home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / share / perl5 / Dpkg.pm < prev    next >
Text File  |  2008-09-03  |  684b  |  25 lines

  1. package Dpkg;
  2.  
  3. use strict;
  4. use warnings;
  5.  
  6. # This module is the only one provided by dpkg and not dpkg-dev
  7. #
  8. # Don't add things here if you don't need them in dpkg itself.
  9. # If you do, and also use the new stuff in dpkg-dev, you'll have to bump
  10. # the dependency of dpkg-dev on dpkg.
  11.  
  12. use base qw(Exporter);
  13. our @EXPORT = qw($version $progname $admindir $dpkglibdir $pkgdatadir);
  14.  
  15. our ($progname) = $0 =~ m#(?:.*/)?([^/]*)#;
  16.  
  17. # The following lines are automatically fixed at install time
  18. our $version="1.14.20ubuntu1";
  19. our $admindir="/var/lib/dpkg";
  20. our $dpkglibdir="/usr/lib/dpkg";
  21. our $pkgdatadir="/usr/share/dpkg";
  22. $pkgdatadir = $ENV{DPKG_DATADIR} if defined $ENV{DPKG_DATADIR};
  23.  
  24. 1;
  25.